Skip to main content

Verify Driver's License

PATCH /api/v1/users/{userId}/drivers-license/verify

Description

Verify the driver's license for a user.

Path Parameters

NameTypeDescription
userIdstringThe ID of the user (path)

Request Body

  • Content Type: application/json
{
"licenseNumber": "string",
"licenseDocument": "string",
"dob": "string"
}

Response Code: 200 - OK

Description

Operation successful with no specific response data.

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request PATCH \ 
--url /api/v1/users/{userId}/drivers-license/verify \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!